home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9202.ARJ / 1002024C < prev    next >
Text File  |  1992-06-02  |  211b  |  7 lines

  1.  
  2. #define add()      (push(pop() + pop()))
  3. #define subtract() {int temp = pop(); (push(pop() - temp))}
  4. #define multiply() (push(pop() * pop()))
  5. #define divide()   {int temp = pop(); (push(pop() / temp))}
  6.  
  7.